(cvs-temp-buffer-name): Fix non-hiddenness.
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 7 Jul 2006 15:39:53 +0000 (15:39 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 7 Jul 2006 15:39:53 +0000 (15:39 +0000)
lisp/ChangeLog
lisp/pcvs-defs.el

index c9c90a17248aa11778e39f98b90c04ca1c9d5778..5c9cccf2caed0481b509b3dc705dbf0f4f7ea5a6 100644 (file)
@@ -1,5 +1,7 @@
 2006-07-07  Stefan Monnier  <monnier@iro.umontreal.ca>
 
+       * pcvs-defs.el (cvs-temp-buffer-name): Fix non-hiddenness.
+
        * progmodes/compile.el (compilation-error-regexp-alist-alist) <gnu>:
        Use shy regexp.  Fix incorrect backref to potentially unmatched group.
 
index 127a550b28c1092ea496710e9665db78cb54961b..e2c6396bdb2a1708bb4b5fbb8a3163dd2c135055 100644 (file)
@@ -239,7 +239,10 @@ The CMD used for `cvs-mode-commit' is \"message\".  For that special
 This expression will be evaluated in an environment where DIR is set to
 the directory name of the cvs buffer.")
 
-(defvar cvs-temp-buffer-name '(expand-file-name " *cvs-tmp*" dir)
+(defvar cvs-temp-buffer-name
+  ;; Was '(expand-file-name " *cvs-tmp*" dir), but that causes them to
+  ;; become non-hidden if uniquification is done `forward'.
+  " *cvs-tmp*"
   "*Name of the cvs temporary buffer.
 Output from cvs is placed here for asynchronous commands.")